home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / bitdef.sql < prev    next >
Text File  |  2000-05-12  |  672b  |  19 lines

  1. /* RCSVER $Id: bitdef.sql,v 1.3 1999-03-22 13:15:21-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        bitdef.sql
  6. * Date:        02/19/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the bitdef table. This table is used to describe
  9. *        the I/O bits on the I/O board.    
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE bitdef
  13. (
  14.     id        NUMBER(38),     /* ID of bit */
  15.     descr        VARCHAR2(15),    /* Description of this bit */
  16.     sort_order    NUMBER(38),
  17.     CONSTRAINT pk_bitdef PRIMARY KEY (id)
  18. );
  19.